-
Notifications
You must be signed in to change notification settings - Fork 218
Fixes #638
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
metacosm
commented
Oct 28, 2021
- Decouple from jandex plugin version that is causing issues when not using the same version in the quarkus extension
- Fixes It should be possible to add controllers for different versions of the same CustomResource #637
This allows to not run into compatibility between index versions.
|
||
public class ControllerManagerTest { | ||
|
||
@Test(expected = OperatorException.class) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are we using junit4 here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
config(TestCustomResource.class), null)); | ||
} | ||
|
||
@Test(expected = OperatorException.class) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same here, this should be different in Junit5,
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JUnit5 should be used, ootherwise LGTM